vcProcessExecutor
Process executor is a behavior that holds and runs process routines.
See in: Overview
Module: vcProcessModel
Parent: vcBehavior
Children -
Referenced by: vcTransportNode.ProcessExecutor
Properties
Learn how to use properties here. The properties are also inherited from the parent class.
| Name | Type | Access | Description |
| CurrentStatement | vcStatement | R | Gets the statement currently being executed by the process executor. |
| Processes | vcList[vcRoutine] | R | Gets all process routines in this executor.See moreExceptions: RuntimeError: When the executor does not have a program. This can occur if called too early during layout/component loading. |
| TransportNode | vcTransportNode | RW | Gets or sets the associated transport node that this executor's processes use to receive and send product instances. Parameters: node (vcTransportNode): Sets the associated transport node. |
Methods
Learn how to use methods here. The methods are also inherited from the parent class.
| Name | Return Type | Parameters | Description |
| createProcess | vcProcessRoutine | String name | Creates a new process routine and adds it to this process executor's processes.See moreParameters: name (String): The process name has to be unique within this process executor's processes. Returns: vcProcessRoutine: The newly created process routine. Exceptions: RuntimeError: When the executor doesn't have a program. This can occur if called too early during layout/component loading. ValueError: When given process name is empty or not unique. |